home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Hot Mix 17
/
Hot Mix 17.iso
/
HM17_SGI
/
research
/
lib
/
obsolete
/
help_vm.pro
< prev
next >
Wrap
Text File
|
1997-07-08
|
701b
|
35 lines
; $Id: help_vm.pro,v 1.2 1997/01/15 04:02:19 ali Exp $
;
; Copyright (c) 1990-1997, Research Systems, Inc. All rights reserved.
; Unauthorized reproduction prohibited.
pro HELP_VM
;+
; NAME:
; HELP_VM
;
; PURPOSE:
; HELP_VM prints the amount of virtual memory currently allocated.
; This procedure was built-in under version 1 VMS
; IDL, and is provided in this form to help users of that version
; adapt to version 2.
;
; CALLING SEQUENCE:
; HELP_VM
;
; INPUT:
; None.
;
; OUTPUT:
; Information about current memory usage is printed.
;
; RESTRICTIONS:
; None.
;
; REVISION HISTORY:
; 10 January 1990
;-
on_error,2 ;Return to caller if an error occurs
HELP, /MEMORY
end